home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / utility / horst_2.zip / ECHECK.BAT < prev    next >
DOS Batch File  |  1995-12-18  |  301b  |  17 lines

  1. @echo off
  2. REM --- this is a _very_ simple batch file, to demonstrate errorlevels
  3.  
  4. if not [%1]==[] goto GO
  5. echo Please specify a number of bytes!
  6. goto END
  7.  
  8. :GO
  9. espace %1
  10. if errorlevel 1 goto NOT_ENOUGH
  11. echo OK
  12. goto END
  13.  
  14. :NOT_ENOUGH
  15. echo Environment space available is less than %1
  16.  
  17. :END